home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ NoScape Clear Options.xpl < prev    next >
Text File  |  2000-11-12  |  955b  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Netscape Navigator"
  5. "NAME"="Clear URLs"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear typed URLs"
  9. "DESCRIPTION 1"="If you do not want that other people can see the URLs you have typed, click the first button."
  10. "DESCRIPTION 2"="This might not work with Communicator (Navigator 4.0) and above."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15.  
  16.  
  17.  
  18. sP="HKCU\Software\Netscape\Netscape Navigator\URL History\"
  19. Sub Plugin_Initialize 
  20.  if RegPathExists(sP)=false then
  21.   Disable
  22.  End if
  23. End Sub
  24.  
  25. Sub Plugin_CheckData(ElementIndex)
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  i=RegEnumValues(sp)
  30.  for l=1 to i
  31.   Call RegDeleteValue(sp & RegEnumElement(l))
  32.  Next
  33.  
  34.  Call MsgInformation("Cleared")
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.